Skip to content

build(deps): bump actions/upload-artifact from 4 to 7#1

Closed
dependabot[bot] wants to merge 45 commits into
mainfrom
dependabot/github_actions/actions/upload-artifact-7
Closed

build(deps): bump actions/upload-artifact from 4 to 7#1
dependabot[bot] wants to merge 45 commits into
mainfrom
dependabot/github_actions/actions/upload-artifact-7

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 13, 2026

Bumps actions/upload-artifact from 4 to 7.

Release notes

Sourced from actions/upload-artifact's releases.

v7.0.0

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v6...v7.0.0

v6.0.0

v6 - What's new

[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (runs.using: node24) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.

Node.js 24

This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.

What's Changed

Full Changelog: actions/upload-artifact@v5.0.0...v6.0.0

v5.0.0

What's Changed

BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but we're treating it as such.

... (truncated)

Commits
  • 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency
  • 634250c Include changes in typespec/ts-http-runtime 0.3.5
  • e454baa Readme: bump all the example versions to v7 (#796)
  • 74fad66 Update the readme with direct upload details (#795)
  • bbbca2d Support direct file uploads (#764)
  • 589182c Upgrade the module to ESM and bump dependencies (#762)
  • 47309c9 Merge pull request #754 from actions/Link-/add-proxy-integration-tests
  • 02a8460 Add proxy integration test
  • b7c566a Merge pull request #745 from actions/upload-artifact-v6-release
  • e516bc8 docs: correct description of Node.js 24 support in README
  • Additional commits viewable in compare view

@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 13, 2026

Labels

The following labels could not be found: ci, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

…hunker, TextUtils and add chunked ingestion for large documents
- QuantizationType enum (NONE, SCALAR_INT8)
- ScalarQuantizer with min/max calibration and INT8 encoding
- QuantizedCosineSimilarity and QuantizedDotProduct SIMD kernels
- SimilarityFunction updated with quantized variants
- ScalarQuantizerTest for encode/decode and batch operations
- PersistenceMode enum (IN_MEMORY, DISK, MMAP)
- IndexFileFormat for binary HNSW serialization
- QuantizedVectorStore with INT8 compression
- InMemoryVectorStore concurrent access improvements
- DiskHnswWriter for binary HNSW graph serialization
- DiskHnswIndex for mmap-based read-only index loading
- QuantizedHnswIndex with INT8 scalar quantization (4x memory reduction)
- BM25Index and HnswIndex performance improvements
- DiskHnswIndexTest and QuantizedHnswIndexTest
- ProductQuantizer: K-Means++ codebook training, PQ encode/decode, ADC
  distance computation, batch encoding
- IvfPqIndex: full IVF-PQ implementing VectorIndex SPI with cluster
  assignment, residual-based PQ encoding, and multi-probe search
- PostingList: per-cluster growable storage for PQ codes
- 14 tests: PQ training/encode/decode/ADC + IVF-PQ search/recall/sorting
- Reranker SPI interface for pluggable re-ranking strategies
- LlmReranker: listwise relevance scoring using Ollama generate API
  with prompt-based 0-10 scoring and graceful fallback
- HybridSearchOrchestrator: integrated optional re-ranking post-processing
- LlmRerankerTest: fallback behavior, empty input, topK limiting
- spector-gpu Maven module with Panama FFM CUDA bindings
- GpuCapability: runtime CUDA detection (device count, name, memory)
- GpuBatchSimilarity: SIMD-optimized batch dot product and cosine
  similarity using FMA Vector API operations
- CudaKernelLauncher: PTX module loader, function resolver, kernel
  launcher with grid/block configuration
- batch_similarity.cu: CUDA kernels for batch_cosine, batch_dot, batch_l2
  with block-level shared memory reduction
- 14 tests: GPU detection, batch similarity correctness, CUDA launcher
…hitecture

- spector-cluster Maven module with gRPC/protobuf integration
- spector_search.proto: 6 RPC definitions (vector, keyword, hybrid
  search, ingest, health check, stats)
- ClusterCoordinator: fan-out/merge query execution via virtual threads
  with consistent hash shard routing
- ShardNode: gRPC server wrapping SpectorEngine
- SpectorSearchServiceImpl: full gRPC service delegating to local engine
- RemoteShardClient: type-safe gRPC client for all 5 RPC methods
- ClusterConfig: multi-node endpoint configuration with replication
- ClusterConfigTest: routing, hash consistency, topology tests
…rEngine

- IndexType enum (HNSW, IVF_PQ) for configurable index strategy
- SpectorConfig: added indexType, ivfNlist, ivfNprobe, pqSubspaces with
  builder methods (withIvfPq) and auto-defaults
- SpectorEngine: IVF-PQ auto-training pipeline that buffers ingested
  vectors and trains PQ codebooks after nlist*40 samples
- Backward-compatible 7-arg constructor preserved
- 4 new tests: auto-training, keyword search during buffering, config
  builder, auto-defaults
- HeavyPerformanceBenchmark: keyword/vector/hybrid at 50K-100K scale
- IvfPqBenchmark: IVF-PQ search, PQ encode/decode, ADC distance, batch
  cosine similarity at 10K-50K scale
- ConcurrencyBenchmark: multi-threaded search throughput
- IngestionBenchmark: document ingestion throughput
- PerformanceTestRunner: standalone runner with formatted results
- pom.xml: added spector-gpu, spector-cluster modules to reactor
  and dependencyManagement
- README.md: expanded architecture (13 modules), 5 new features,
  updated comparison table (quantization, IVF-PQ, GPU, LLM, distributed),
  updated test suite (316+ tests), added roadmap checklist
Extract ~300 lines of duplicated graph traversal code (greedyClosest,
searchLayer, selectNeighbors, addConnection, getNeighbors, setNeighbors)
into AbstractHnswIndex base class with three template method hooks:

- computeDistance(float[], int) — distance from query to stored node
- getNodeVector(int) — float32 vector retrieval for pruning
- storeVector(int, float[]) — vector storage on insertion

HnswIndex: 413 -> 76 lines (-81%)
QuantizedHnswIndex: 476 -> 226 lines (-53%)

All 316+ tests passing, zero regressions.
- VectorIndex: add default isReadOnly() method (returns false)
- DiskHnswIndex: override isReadOnly() to return true
- KeywordIndex: add default remove(String id) method
- BM25Index: expose existing removeDoc() logic via KeywordIndex.remove()

Completes the deletion API path across the engine.
sbharatjoshi and others added 16 commits May 16, 2026 10:02
- Add gpuEnabled, rerankerEnabled, rerankerOllamaUrl, rerankerModel,
  rerankerMaxCandidates fields to SpectorConfig record
- Add with*() builder-style methods for GPU and reranker config
- Add IVF-PQ computed defaults (effectiveNlist, effectiveNprobe, etc.)
- Add spector-gpu dependency to engine POM
Introduce GoF design patterns for component creation:

- VectorIndexFactory: creates HNSW, QuantizedHNSW, or IVF-PQ based on
  config (replaces if/else chain in engine constructor)
- VectorStoreFactory: creates InMemory or MappedVectorStore based on
  PersistenceMode (replaces hardcoded InMemoryVectorStore)
- EngineComponentFactory: Abstract Factory assembling all components
  (store, index, GPU, reranker) into an EngineComponents record
- EngineComponents: immutable record grouping all subsystems

Adding a new index or store type now requires zero changes to
SpectorEngine (Open/Closed Principle).
Refactor SpectorEngine to delegate component construction to
EngineComponentFactory (Abstract Factory) instead of inline if/else:

- Constructor: 150 lines -> 30 lines
- Field type: BM25Index -> KeywordIndex (DIP compliance)
- Removed 8 concrete class imports for construction (now in factories)
- Added SpectorEngine.Builder for fluent engine construction:

    SpectorEngine engine = SpectorEngine.builder()
        .dimensions(384).capacity(100_000)
        .similarity(SimilarityFunction.COSINE)
        .gpu(true).build();

- Added constructor accepting custom EngineComponentFactory for testing
- Integrated GPU fallback and LLM reranker lifecycle
…points

- CORS support via Javalin bundled plugin
- Optional API key authentication via X-API-Key header
- Vector dimension validation on ingest
- New endpoints: /api/v1/ingest/auto, /api/v1/ingest/bulk,
  DELETE /api/v1/documents/{id}, /api/v1/metrics
- Request counters via LongAdder for observability
Add 4-arg constructor accepting CA cert, client cert, and client key
for TLS-encrypted gRPC connections. Transparent fallback to plaintext
for development environments.
…ReentrantLock

- Parent POM: remove duplicate jackson-databind declaration
- MappedVectorStore: replace synchronized with ReentrantLock on put()
  and close() for virtual thread compatibility (consistent with
  InMemoryVectorStore)
- README: reflect current 13-module architecture, design patterns,
  GPU acceleration, LLM re-ranking, and IVF-PQ indexing
- CHANGELOG: comprehensive feature inventory across all modules
- goal.md: update roadmap with completed items and current status
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4...v7)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump actions/upload-artifact from 4 to 7 build(deps): bump actions/upload-artifact from 4 to 7 May 20, 2026
@dependabot dependabot Bot force-pushed the dependabot/github_actions/actions/upload-artifact-7 branch from 9391a6b to fe9c655 Compare May 20, 2026 23:27
sbharatjoshi added a commit that referenced this pull request May 27, 2026
- mkdocs.yml: updated site_description, added MCP and JDK API nav entries
- index.md: enterprise tagline, MCP metrics, agent integration nav section
- about.md: MCP as #1 differentiator, agent-native comparison table,
  agentic AI memory use case, removed competitor name-drops
- architecture/overview.md: added spector-mcp to module diagram,
  dependency graph, and new MCP agent data flow sequence diagram
- roadmap.md: new Agentic AI section (MCP server, Streamable HTTP,
  LoRA adapter routing, ColBERT late interaction), updated summary table
sbharatjoshi added a commit that referenced this pull request Jun 1, 2026
- mkdocs.yml: updated site_description, added MCP and JDK API nav entries
- index.md: enterprise tagline, MCP metrics, agent integration nav section
- about.md: MCP as #1 differentiator, agent-native comparison table,
  agentic AI memory use case, removed competitor name-drops
- architecture/overview.md: added spector-mcp to module diagram,
  dependency graph, and new MCP agent data flow sequence diagram
- roadmap.md: new Agentic AI section (MCP server, Streamable HTTP,
  LoRA adapter routing, ColBERT late interaction), updated summary table
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Jun 1, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/github_actions/actions/upload-artifact-7 branch June 1, 2026 13:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant